home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / TXT / LZW.TXT < prev    next >
Text File  |  1997-07-13  |  397b  |  14 lines

  1. The LZW functions simply compress and decompress data in memory buffers.
  2.  
  3. dword lzw_compress(dest,src,size) is used to compress src and placing into
  4.   dest for size bytes.
  5.   It returns the size of the outputed data.
  6.  
  7. void lzw_decompress(dest,src) is used to decompress src and places the data
  8.   into dest.  Returns only a error code if error occurs.
  9.  
  10. That's it, plan and simple.
  11.  
  12.  
  13.   
  14.